home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / wtj009.zip / CPP_DLL.ZIP / HELLO2.CPP < prev    next >
C/C++ Source or Header  |  1992-08-17  |  218b  |  14 lines

  1. // hello2.cpp RHS 7/15/92
  2.  
  3. #include<windows.h>
  4. #include"hellolib.h"
  5.  
  6. LPSTR wintitle = "HELLO2";
  7.  
  8. int PASCAL WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9.     {
  10.     HelloMessage(wintitle);
  11.     return 0;
  12.     }
  13.  
  14.